/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "EB Garamond", serif;
    font-weight: bold;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header */
.header {
    background: white;
    color: white;
    padding: 1vw 4vw;
    width: 100%;
    position: fixed;
}

.header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: auto;
    padding: 0 1rem;
}
.header .container img{
    width: 100px;
}
.nav{
    text-align: right;
}
.nav ul li {
    margin-left: 1.5rem;
    list-style: none;
    display: inline-block;
    position: relative;
}
.nav ul li a {
    color: rgb(21, 21, 100);
    text-decoration: none;
    font-size: 1rem;
}
.nav ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: red;
    display: block;
    margin: auto;
    transition: 1s;
}
.nav ul li:hover::after{
    width: 100%;
}
nav .fa{
    display: none;
}

@media(max-width:700px){
    #home h1{
        font-size: 24px;
        padding-bottom: 15px;
    }
    #home h2{
        font-size: 19px;
        padding-bottom: 0px;
    }
    #home p{
        font-size: 16px;
        padding-bottom: 15px;
        width: 70%;
        margin: auto;
    }
    nav ul li{
        display: block;
        padding-bottom: 8px;
    }
    .nav{
        position: absolute;
        background: white;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: rgb(21, 21, 100);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    nav ul{
        padding: 30px;
    }
}


.container-2 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.page-header {
    background: #003366;
    color: white;
    text-align: center;
    padding: 2rem 0;

}

.page-header h1 {
    font-size: 2.5rem;
    margin-top: 80px;
}

.page-header p {
    font-size: 1.2rem;
}

.btn {
    cursor: pointer;
}

/* Tracking Form */
.track-shipment {
    padding: 2rem 0;
    text-align: center;
}

.track-shipment h2 {
    font-size: 2rem;
    color: #003366;
}

.track-shipment form {
    margin-top: 1.5rem;
}

.track-shipment label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.track-shipment input {
    width: 80%;
    max-width: 400px;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.track-shipment .btn {
    padding: 0.75rem 1.5rem;
    background: #ff6600;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.track-shipment .btn:hover {
    background: #e55d00;
}
.fedl{
    max-width: 150px; /* Set a uniform size */
    height: auto;
 
    padding: 20px 0;
}
.fedl2{
    max-width: 150px; /* Set a uniform size */
    height: auto;

    padding: 20px 0;
}
.fedl3{
    max-width: 150px; /* Set a uniform size */
    height: auto;

    padding: 20px 0;
}

/* Tracking Results */
.tracking-results {
    background: #f9f9f9;
    padding: 2rem 0;
    text-align: center;
}

.tracking-results h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 1rem;
}

.result-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: white;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.result-box p {
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Call to Action */
.cta-section {
    background: #003366;
    color: white;
    padding: 2rem 0 0;
    text-align: center;
}

.cta-section p{
    padding-bottom: 0.7rem;
}
.cta-section .btn {
    padding: 0.75rem 1.5rem;
    background: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.cta-section .btn:hover {
    background: #e55d00;
}

/* Footer */
.site-footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 1rem 0;
}